home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / UTILENUS / DOSMENU.LZH / DOSMENU.TXT < prev    next >
Text File  |  1991-05-29  |  937b  |  38 lines

  1. A
  2. Print the file README 
  3. %A Print to screen or printer (s/p)?;
  4. if "%A" == "p" print readme;
  5. if not "%A" == "p" type readme;
  6. if not "%A" == "p" pause
  7. B
  8. Print documentation file (DOSMENU.DOC) on the printer
  9. print DOSMENU.DOC
  10. C
  11. Print the registration form
  12. print DOSMENU.REG
  13. D
  14. An example of a menu entry which uses a prompt
  15. %A Please enter the disk letter to check:;
  16. chkdsk %A:;
  17. pause
  18. E
  19. An example which uses a prompt and the zero-RAM option
  20. #%A Please enter the disk letter to check:;
  21. chkdsk %A:;
  22. pause
  23. F
  24. Another an example of a menu entry which uses a prompt
  25. %A Please enter the disk letter to check, or "q" to quit:;
  26. if not "%A" == "q" chkdsk %A:;
  27. if not "%A" == "q" pause
  28. G
  29. An example of a menu entry which uses multiple prompts
  30. %A Please enter a disk letter to check:;
  31. %B Please enter another disk letter to check:;
  32. chkdsk %A:;
  33. chkdsk %B:;
  34. pause
  35. H
  36. An example which uses a sub-menu
  37. dosmenu menu2.txt
  38.